added some development tools
[windows-sources.git] / developer / Samples / NET 4.6 / Samples for Parallel / MandelbrotFractals / MandelbrotFractals_CSharp / MainForm.designer.cs
blob8407b26511d0b456803132a034e9f3325b1282a6
1 namespace Microsoft.Pcp.Pfx.InteractiveFractal
3 partial class MainForm
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
18 components.Dispose();
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
31 this.mandelbrotPb = new System.Windows.Forms.PictureBox();
32 this.statusStrip1 = new System.Windows.Forms.StatusStrip();
33 this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
34 ((System.ComponentModel.ISupportInitialize)(this.mandelbrotPb)).BeginInit();
35 this.statusStrip1.SuspendLayout();
36 this.SuspendLayout();
37 //
38 // mandelbrotPb
39 //
40 this.mandelbrotPb.BackColor = System.Drawing.Color.Black;
41 this.mandelbrotPb.Dock = System.Windows.Forms.DockStyle.Fill;
42 this.mandelbrotPb.Location = new System.Drawing.Point(0, 0);
43 this.mandelbrotPb.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
44 this.mandelbrotPb.Name = "mandelbrotPb";
45 this.mandelbrotPb.Size = new System.Drawing.Size(521, 452);
46 this.mandelbrotPb.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
47 this.mandelbrotPb.TabIndex = 0;
48 this.mandelbrotPb.TabStop = false;
49 this.mandelbrotPb.VisibleChanged += new System.EventHandler(this.mandelbrotPb_VisibleChanged);
50 this.mandelbrotPb.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.mandelbrotPb_MouseDoubleClick);
51 this.mandelbrotPb.MouseDown += new System.Windows.Forms.MouseEventHandler(this.mandelbrotPb_MouseDown);
52 this.mandelbrotPb.MouseMove += new System.Windows.Forms.MouseEventHandler(this.mandelbrotPb_MouseMove);
53 this.mandelbrotPb.MouseUp += new System.Windows.Forms.MouseEventHandler(this.mandelbrotPb_MouseUp);
54 this.mandelbrotPb.Resize += new System.EventHandler(this.mandelbrotPb_Resize);
55 //
56 // statusStrip1
57 //
58 this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
59 this.toolStripStatusLabel1});
60 this.statusStrip1.Location = new System.Drawing.Point(0, 427);
61 this.statusStrip1.Name = "statusStrip1";
62 this.statusStrip1.Padding = new System.Windows.Forms.Padding(1, 0, 19, 0);
63 this.statusStrip1.Size = new System.Drawing.Size(521, 25);
64 this.statusStrip1.TabIndex = 2;
65 this.statusStrip1.Text = "statusStrip1";
66 //
67 // toolStripStatusLabel1
68 //
69 this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
70 this.toolStripStatusLabel1.Size = new System.Drawing.Size(386, 20);
71 this.toolStripStatusLabel1.Text = "P: parallel mode, S: sequential mode, Double-click: zoom";
72 //
73 // MainForm
74 //
75 this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
76 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
77 this.ClientSize = new System.Drawing.Size(521, 452);
78 this.Controls.Add(this.statusStrip1);
79 this.Controls.Add(this.mandelbrotPb);
80 this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
81 this.Name = "MainForm";
82 this.Text = "Mandelbrot Fractals";
83 ((System.ComponentModel.ISupportInitialize)(this.mandelbrotPb)).EndInit();
84 this.statusStrip1.ResumeLayout(false);
85 this.statusStrip1.PerformLayout();
86 this.ResumeLayout(false);
87 this.PerformLayout();
91 #endregion
93 private System.Windows.Forms.PictureBox mandelbrotPb;
94 private System.Windows.Forms.StatusStrip statusStrip1;
95 private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;